From 814957021f5223b99ceb4b23a953c0eb09f30dcc Mon Sep 17 00:00:00 2001 From: Carlos Garnacho Date: Sun, 13 Jun 2010 17:33:47 +0200 Subject: [PATCH] Fix compile warning. --- gtk/gtkstylecontext.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtkstylecontext.c b/gtk/gtkstylecontext.c index 848d8093e8..d760f7bc71 100644 --- a/gtk/gtkstylecontext.c +++ b/gtk/gtkstylecontext.c @@ -498,7 +498,7 @@ gtk_style_context_list_child_classes (GtkStyleContext *context) link = link->next; child_class = g_quark_to_string (link_class->class_quark); - classes = g_list_prepend (classes, child_class); + classes = g_list_prepend (classes, (gchar *) child_class); } return classes; -- 2.30.2